home *** CD-ROM | disk | FTP | other *** search
/ Cream of the Crop 1 / Cream of the Crop 1.iso / PROGRAM / SPAWNO41.ARJ / SPAWNVE.C < prev    next >
C/C++ Source or Header  |  1991-11-10  |  715b  |  21 lines

  1. /********************************************************************/
  2. /*   SPAWNO v4.0   EMS/XMS/disk swapping replacement for spawn...() */
  3. /*   (c) Copyright 1990, 1991 Ralf Brown  All Rights Reserved        */
  4. /*                                    */
  5. /*   May be freely copied provided that this copyright notice is    */
  6. /*   not altered or removed.                        */
  7. /********************************************************************/
  8.  
  9. #include "_spawno.h"
  10. #include <alloc.h>
  11.  
  12. int _Cdecl spawnveo(const char *overlay_path, const char *name, const char **args,
  13.             const char **env)
  14. {
  15.    int retval ;
  16.    
  17.    retval = __spawnv(overlay_path,name,args,__spawn_buildenv(env)) ;
  18.    __spawn_free_env() ;
  19.    return retval ;
  20. }
  21.